翻訳と辞書
Words near each other
・ "O" Is for Outlaw
・ "O"-Jung.Ban.Hap.
・ "Ode-to-Napoleon" hexachord
・ "Oh Yeah!" Live
・ "Our Contemporary" regional art exhibition (Leningrad, 1975)
・ "P" Is for Peril
・ "Pimpernel" Smith
・ "Polish death camp" controversy
・ "Pro knigi" ("About books")
・ "Prosopa" Greek Television Awards
・ "Pussy Cats" Starring the Walkmen
・ "Q" Is for Quarry
・ "R" Is for Ricochet
・ "R" The King (2016 film)
・ "Rags" Ragland
・ ! (album)
・ ! (disambiguation)
・ !!
・ !!!
・ !!! (album)
・ !!Destroy-Oh-Boy!!
・ !Action Pact!
・ !Arriba! La Pachanga
・ !Hero
・ !Hero (album)
・ !Kung language
・ !Oka Tokat
・ !PAUS3
・ !T.O.O.H.!
・ !Women Art Revolution


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Run-time complexity : ウィキペディア英語版
Time complexity

In computer science, the time complexity of an algorithm quantifies the amount of time taken by an algorithm to run as a function of the length of the string representing the input〔. The time complexity of an algorithm is commonly expressed using big O notation, which excludes coefficients and lower order terms. When expressed this way, the time complexity is said to be described ''asymptotically'', i.e., as the input size goes to infinity. For example, if the time required by an algorithm on all inputs of size ''n'' is at most for any ''n'' (bigger than some ''n0''), the asymptotic time complexity is O(''n''3).
Time complexity is commonly estimated by counting the number of elementary operations performed by the algorithm, where an elementary operation takes a fixed amount of time to perform. Thus the amount of time taken and the number of elementary operations performed by the algorithm differ by at most a constant factor.
Since an algorithm's performance time may vary with different inputs of the same size, one commonly uses the worst-case time complexity of an algorithm, denoted as ''T''(''n''), which is defined as the maximum amount of time taken on any input of size ''n''. Less common, and usually specified explicitly, is the measure of average-case complexity. Time complexities are classified by the nature of the function ''T''(''n''). For instance, an algorithm with ''T''(''n'') = ''O''(''n'') is called a ''linear time algorithm'', and an algorithm with ''T''(''n'') = ''O''(''M''''n'') and ''m''''n''= O(''T''(''n'')) for some ''M'' ≥ ''n'' > 1 is said to be an ''exponential time algorithm''.
==Table of common time complexities==

The following table summarizes some classes of commonly encountered time complexities. In the table, poly(''x'') = ''x''''O''(1), i.e., polynomial in ''x''.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Time complexity」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.